Oracle password expired

Oracle passwords can expire and if your application uses any of those users it could suddenly stop working. You can check status of your user from the dba_users table using the following query select username, account_status, expiry_date, profile from dba_users; To solve this, you could:- 1.) Run the sql query alter profile default limit password_life_time unlimited; … Continue reading Oracle password expired